home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / lib / float / dpa_mul.a < prev    next >
Encoding:
Text File  |  1994-02-01  |  424 b   |  27 lines

  1.  
  2.         ;   DPA_MUL.A
  3.         ;
  4.         ;   A0    arg1    (8 bytes)
  5.         ;   A1    arg2    (8 bytes)
  6.         ;
  7.         ;   result -> D0/D1
  8.         ;
  9.         ;   (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  10.  
  11.         section text,code
  12.  
  13.         xref    _MathIeeeDoubBasBase
  14.         xref    _LVOIEEEDPMul
  15.         xdef    __dpmul_a
  16.  
  17. __dpmul_a    movem.l D2/D3/A6,-(sp)
  18.         move.l    _MathIeeeDoubBasBase(A4),A6
  19.         movem.l (A0),D0/D1
  20.         movem.l (A1),D2/D3
  21.         jsr    _LVOIEEEDPMul(A6)
  22.         movem.l (sp)+,D2/D3/A6
  23.         rts
  24.  
  25.         END
  26.  
  27.